home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mgr / sparcmgr / src.zoo / src / stub_lib / Makefile < prev    next >
Encoding:
Makefile  |  1989-04-03  |  916 b   |  40 lines

  1. #                        Copyright (c) 1988 Bellcore
  2. #                            All Rights Reserved
  3. #       Permission is granted to copy or use this program, EXCEPT that it
  4. #       may not be sold for profit, the copyright notice must be reproduced
  5. #       on copies, and credit should be given to Bellcore where it is due.
  6. #       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  7.  
  8. #    $Header: Makefile,v 4.4 88/07/19 14:34:19 sau Exp $
  9. #    $Source: /tmp/mgrsrc/src/oblit/RCS/Makefile,v $
  10.  
  11. #    makefile for stub blit library
  12.  
  13. CFLAGS=-O  -I..
  14.  
  15. CFILES= blit.c line.c pixel.c bitmap.c
  16. OBJS= blit.o line.o pixel.o bitmap.o
  17. HFILES= bitmap.h
  18. OTHER=Makefile README
  19. LIB=blitlib.a
  20. START=.
  21. MAKE=make
  22.  
  23. all:        $(LIB)
  24.  
  25. # bitmap library
  26.  
  27. $(LIB): $(OBJS)
  28.     ar rv $(LIB) $(OBJS)
  29.     ranlib $(LIB)
  30.  
  31. clean:
  32.     rm -f *.o $(LIB)
  33.  
  34. list:
  35.     @for i in ${HFILES} ${CFILES} ${OTHER}; do \
  36.         echo "${START}/$$i"; \
  37.     done    
  38.  
  39. clobber:
  40.